POV-Ray : Newsgroups : povray.general : Multiple maps? : Re: Multiple maps? Server Time
9 Aug 2024 11:26:22 EDT (-0400)
  Re: Multiple maps?  
From: Bob Hughes
Date: 22 Jul 2000 15:32:39
Message: <3979f6d7@news.povray.org>
"Jason Miller" <jas### [at] pinheirotcimetnet> wrote in message
news:3979e539$1@news.povray.org...
| Is it possible to use multiple maps, each for a different aspect of the
| texture?

You might try using 'average' in a 'texture_map' which contains each of your
different maps as individual textures.

#declare Texture1=texture {pigment{image_map{tga "yourtga1.tga"}}}
#declare Texture2=texture {pigment{image_map{tga "yourtga2.tga"}}}
#declare Texture3=texture {pigment{image_map{tga "yourtga3.tga"}}}

texture {average texture_map {
 [1 Texture1]
 [1 Texture2]
 [1 Texture3]
}}


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.